home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mfs055 / makefile < prev    next >
Makefile  |  1992-04-14  |  406b  |  18 lines

  1. #Makefile for minixfs and friends 
  2.  
  3. AS=gcc-as
  4.  
  5. CFLAGS=-Wall -mshort -O -fomit-frame-pointer -I.
  6.  
  7. all: minix.xfs minit.ttp mfsconf.ttp
  8.  
  9. minix.xfs: minixfs.o init.o
  10.     gcc-ld -s -o minix.xfs init.o minixfs.o -lgnu16
  11.  
  12. minixfs.o: minixfs.h mfsproto.h atarierr.h filesys.h
  13.  
  14. minit.ttp: minit.c
  15.     $(CC) -o minit.ttp $(CFLAGS) minit.c
  16. mfsconf.ttp: mfsconf.c
  17.     $(CC) -o mfsconf.ttp $(CFLAGS) mfsconf.c
  18.